@regenbio/regenbio-components-react 1.4.6 → 1.4.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/build/index.d.ts CHANGED
@@ -50,8 +50,9 @@ import StorageEnum from "./services/enums/storageEnum";
50
50
  import useRbDictionary from "./services/hooks/useRbDictionary";
51
51
  import useRbValueEnum from "./services/hooks/useRbValueEnum";
52
52
  import useRbAuthorize from "./services/hooks/useRbAuthorize";
53
- import useRbMessage from "./services/hooks/useRbMessage";
54
- import useRbNotification from "./services/hooks/useRbNotification";
53
+ import useRbMessage from "./services/hooks/feedback/useRbMessage";
54
+ import useRbNotification from "./services/hooks/feedback/useRbNotification";
55
+ import useRbFeedback from "./services/hooks/feedback/useRbFeedback";
55
56
  import CommonConstant from "./services/constants/commonConstant";
56
57
  import IconConstant from "./services/constants/iconConstant";
57
58
  import DbConstant from "./services/constants/dbConstant";
@@ -100,7 +101,7 @@ export { EventEnum, StorageEnum };
100
101
  export { CommonConstant, IconConstant, DbConstant };
101
102
  export { RespDTO, ConstantListItem, DictListItem, PageParams, RbInitialStateReqProps, RbInitialStateRespProps, RbGlobalStateType, RbGlobalFunctionType };
102
103
  export { BaseDO, BaseRelativeDO, TokenDO };
103
- export { useRbDictionary, useRbValueEnum, useRbAuthorize, useRbMessage, useRbNotification };
104
+ export { useRbDictionary, useRbValueEnum, useRbAuthorize, useRbMessage, useRbNotification, useRbFeedback };
104
105
  export { zhCN, enUS };
105
106
  declare const _default: {
106
107
  RbDataTable: <DataSource, U, ValueType = "text">(props: RbDataTableProps<DataSource, U, ValueType>) => any;